home *** CD-ROM | disk | FTP | other *** search
/ Champak 61 / Volume 61 - JOGO DISK .iso / Games / gogodiet.swf / scripts / frame_29 / DoAction.as
Text File  |  2008-03-13  |  398b  |  26 lines

  1. MovieClip.prototype.BTN = function()
  2. {
  3.    this.gotoAndStop(1);
  4.    this.onRollOver = function()
  5.    {
  6.       this.gotoAndStop(2);
  7.    };
  8.    this.onRollOut = function()
  9.    {
  10.       this.gotoAndStop(1);
  11.    };
  12. };
  13. btn0.onRelease = function()
  14. {
  15.    PV();
  16.    gotoAndStop("game");
  17.    play();
  18. };
  19. btn1.onRelease = function()
  20. {
  21.    PV();
  22.    gotoAndStop("howto");
  23. };
  24. btn0.BTN();
  25. btn1.BTN();
  26.